Add KDE Plasma Qt/QML native client (PHASE 10)#43
Merged
infinityabundance merged 5 commits intomainfrom Feb 13, 2026
Merged
Conversation
Co-authored-by: infinityabundance <255699974+infinityabundance@users.noreply.github.com>
Co-authored-by: infinityabundance <255699974+infinityabundance@users.noreply.github.com>
Co-authored-by: infinityabundance <255699974+infinityabundance@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Build KDE Plasma native client for RootStream
Add KDE Plasma Qt/QML native client (PHASE 10)
Feb 13, 2026
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Native KDE Plasma client for RootStream. Provides Qt 6/QML UI wrapping libRootStream C API. Foundation complete: connection management, peer discovery, settings persistence, AI logging. Video/audio/input rendering deferred to Phase 2.
Details
What changed?
Core Architecture (43 files, ~2,250 LOC)
clients/kde-plasma-client/src/- C++ Qt wrappersRootStreamClient- Main API wrapper (rootstream_crypto_init, rootstream_net_*, rootstream_decoder_init)PeerManager- QAbstractListModel for peer list, discovery signalsSettingsManager- QSettings persistence (codec, bitrate, devices)LogManager- AI logging integration via ai_logging_set_enabled()VideoRenderer,AudioPlayer,InputManager(Phase 2)UI Layer
clients/kde-plasma-client/qml/- 6 QML viewsInfrastructure
Documentation (7 files, ~40k words)
CLI Interface
rootstream-kde-client --ai-logging rootstream-kde-client --connect "kXx7YqZ3...@hostname"Rationale
Aligns with RootStream goals:
Why now: Phases 0-9 complete (host, network, crypto, discovery). Client needed to close streaming loop. This becomes the primary recommended client per project roadmap.
Testing
Describe how you tested this change:
makeequivalent:cmake + make)Unit tests pass:
What works:
Phase 2 needed:
Notes
Original prompt
PHASE 10: Build KDE Plasma Qt/QML Native Client for RootStream
Project Context
RootStream is a secure P2P game streaming platform (Phases 0-9 complete) with:
libRootStreamavailable for client integrationPHASE 10 Goals
Build a production-ready KDE Plasma / Arch Linux / CachyOS native client that:
--ai-loggingArchitecture Overview
Implementation Plan
1. Project Structure